github.com/klauspost/compress/zstd.frameHeader.ContentSize (field)
24 uses
github.com/klauspost/compress/zstd (current package)
decodeheader.go#L254: ContentSize: h.FrameContentSize,
encoder.go#L250: ContentSize: uint64(s.frameContentSize),
encoder.go#L534: ContentSize: 0,
encoder.go#L559: ContentSize: uint64(len(src)),
frameenc.go#L16: ContentSize uint64
frameenc.go#L53: if f.ContentSize >= 256 {
frameenc.go#L56: if f.ContentSize >= 65536+256 {
frameenc.go#L59: if f.ContentSize >= 0xffffffff {
frameenc.go#L77: dst = append(dst, uint8(f.ContentSize))
frameenc.go#L81: f.ContentSize -= 256
frameenc.go#L82: dst = append(dst, uint8(f.ContentSize), uint8(f.ContentSize>>8))
frameenc.go#L84: dst = append(dst, uint8(f.ContentSize), uint8(f.ContentSize>>8), uint8(f.ContentSize>>16), uint8(f.ContentSize>>24))
frameenc.go#L86: dst = append(dst, uint8(f.ContentSize), uint8(f.ContentSize>>8), uint8(f.ContentSize>>16), uint8(f.ContentSize>>24),
frameenc.go#L87: uint8(f.ContentSize>>32), uint8(f.ContentSize>>40), uint8(f.ContentSize>>48), uint8(f.ContentSize>>56))
 |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |